Skip to main content

MultiplyNumberBy

Type

statement

Summary

Multiplies Target by Value.

Syntax

multiply <Target> by <Value>

Description

Multiplies the number Target by Value.

note

It is a syntax error if Target does not evaluate to a variable.

Parameters

NameTypeDescription

Target

An expression that evaluates to a numeric variable.

Value

An expression that evaluates to a number.

Examples

variable tVar as Number
put 2 into tVar
multiply tVar by 2 -- tVar contains 4
Thank you for your feedback!

Was this page helpful?